summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-12-02 23:27:27 +0100
committerLiam <byteslice@airmail.cc>2022-12-04 16:55:13 +0100
commit06a67d2bbd346b258b72b926cf5e8a463a29c237 (patch)
tree5cc38fea26b6bdd03614f93b46f9c45f49de4121
parentvulkan_common: unsuffix timeline semaphore feature test structure (diff)
downloadyuzu-06a67d2bbd346b258b72b926cf5e8a463a29c237.tar
yuzu-06a67d2bbd346b258b72b926cf5e8a463a29c237.tar.gz
yuzu-06a67d2bbd346b258b72b926cf5e8a463a29c237.tar.bz2
yuzu-06a67d2bbd346b258b72b926cf5e8a463a29c237.tar.lz
yuzu-06a67d2bbd346b258b72b926cf5e8a463a29c237.tar.xz
yuzu-06a67d2bbd346b258b72b926cf5e8a463a29c237.tar.zst
yuzu-06a67d2bbd346b258b72b926cf5e8a463a29c237.zip
-rw-r--r--src/video_core/vulkan_common/vulkan_device.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp
index 17508e558..267b182fb 100644
--- a/src/video_core/vulkan_common/vulkan_device.cpp
+++ b/src/video_core/vulkan_common/vulkan_device.cpp
@@ -406,8 +406,8 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR
};
SetNext(next, timeline_semaphore);
- VkPhysicalDevice16BitStorageFeaturesKHR bit16_storage{
- .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES_KHR,
+ VkPhysicalDevice16BitStorageFeatures bit16_storage{
+ .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES,
.pNext = nullptr,
.storageBuffer16BitAccess = true,
.uniformAndStorageBuffer16BitAccess = true,